SftTree/OCX 7.0

SftTree.Columns Property

Softel vdm, Inc.

Defines the number of columns.

Deprecated - Provided for compatibility with earlier versions only - Use ColumnsObj.Count instead

Syntax       

Get

VB.NET

NumCols = object.Columns  As Short

VB

NumCols = object.Columns  As Integer

C#.NET

short NumCols = object.Columns;

VC++

short NumCols = object->Columns;
short NumCols = object->GetColumns();

C

HRESULT object->get_Columns(short* NumCols);

Delphi

NumCols := object.Columns   : Smallint;

Put

VB.NET

object.Columns = NumCols  As Short

VB

object.Columns = NumCols  As Integer

C#.NET

short object.Columns = NumCols;

VC++

short object->Columns = NumCols;
void object->PutColumns(short NumCols);

C

HRESULT object->put_Columns(short NumCols);

Delphi

object.Columns := NumCols   : Smallint;

object

A SftTree object.

NumCols

Defines the number of columns.

Comments

Deprecated - Provided for compatibility with earlier versions only - Use ColumnsObj.Count instead

The Columns property defines the number of columns.

The number of columns can only be changed if a tree control is empty.  The Items.Clear method can be used to remove all items from a tree control.

Additional columns are always added at the end of the list of columns.  Existing column properties are not changed.  Default values are used for the new columns added.  These can be changed using the column related properties.  The last column will be defined using an explicit column width.  If an open-ended column is desired, use the ColumnsObj.OpenEnded property to redefine the last column.

See Also  SftTree Object | Object Hierarchy


Feedback / comments / error reports for this topic
© 2015 - Softel vdm, Inc. - www.softelvdm.com